projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cd11ef3
)
(Findent_to): Pass new arg to Finsert_char.
author
Richard M. Stallman
<rms@gnu.org>
Sun, 28 Aug 1994 06:08:54 +0000
(06:08 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Sun, 28 Aug 1994 06:08:54 +0000
(06:08 +0000)
src/indent.c
patch
|
blob
|
history
diff --git
a/src/indent.c
b/src/indent.c
index e90bc4032880f5302c4f8d04e4b13a7bde107d84..4fc1c26481660a9699a707e6038af26d04497398 100644
(file)
--- a/
src/indent.c
+++ b/
src/indent.c
@@
-206,14
+206,14
@@
even if that goes past COLUMN; by default, MIN is zero.")
XFASTINT (n) = mincol / tab_width - fromcol / tab_width;
if (XFASTINT (n) != 0)
{
- Finsert_char (make_number ('\t'), n);
+ Finsert_char (make_number ('\t'), n
, Qt
);
fromcol = (mincol / tab_width) * tab_width;
}
}
XFASTINT (col) = mincol - fromcol;
- Finsert_char (make_number (' '), col);
+ Finsert_char (make_number (' '), col
, Qt
);
last_known_column = mincol;
last_known_column_point = point;